home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Electronic Clipper 1995 April
/
Electronic Clipper 1995-04.iso
/
pc
/
pc_users
/
ideasrc
/
setup
/
pviewer
/
libmain.c
< prev
next >
Wrap
Text File
|
1993-04-17
|
934b
|
35 lines
// ---------------------------------------------------------------------
//
// LibMain.c - Picture Viewer - QuickTime for Windows
//
// Version 1.0
//
// (c) 1988-1992 Apple Computer, Inc. All Rights Reserved.
//
// ---------------------------------------------------------------------
// Includes
// --------
#include <Windows.H> // Required by Windows
// Function: LibMain - Generic Windows "LibMain" Routine
// --------------------------------------------------------------------
// Parameters: As required by Microsoft Windows
//
// Returns: As required by Microsoft Windows
// --------------------------------------------------------------------
int CALLBACK LibMain
(HANDLE hInstance, WORD wDataSeg, WORD wHeapSize, LPSTR lpszCmdLine)
{if (wHeapSize > 0)
UnlockData (0);
// Return to Windows
return 1;
}